Source code :: Plasma position.php

[Return]
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
##!/usr/bin/python2
## -*- coding: utf-8 -*-



<%page args="shot, page" />

<%

    from pygolem_lite.web import make_config, get_page_paths, make_image
    from  pygolem_lite import Shot
    import re,os
    page_path, base_path, page  = get_page_paths(shot, page)
%>

<a href="LocalPlasmaPosition.py">[Source - LocalPlasmaPosition.py]</a><br/>


% if Shot(shot)['plasma']:
    ${make_image( "basicgraph.png" , "Plasma position")}

    <a href="plasma_position.txt">Plasma position data file</a>

%else:
        <h2>No plasma</h2>
%endif


${Shot(shot).get_pygolem_list([ 'mirnov_coils:position_z', 'mirnov_coils:position_r'])}

Navigation